My code is-:
private class AsyncCallWS extends AsyncTask<String, Void, Void> {
@Override
protected Void doInBackground(String... params) {
//Invoke webservice
vaildUserId = WebService.invokeAuthenticateUserWS(loginUserName, loginPassword, "AuthenticateUser");
}
Manoj Pandey
20-Mar-2015When an asynchronous task is executed, the task goes through 4 steps:
1. onPreExecute(), invoked on the UI thread before the task is executed.
2. doInBackground(Params...), invoked on the background thread immediately after onPreExecute() finishes executing.
3. onProgressUpdate(Progress...), invoked on the UI thread after a call to publishProgress(Progress...).
4. onPostExecute(Result), invoked on the UI thread after the background computation finishes.
Add following code